home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / scsiDiskBoot / fsBoot.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-06-13  |  1.0 KB  |  37 lines

  1. /*
  2.  * fsBoot.h --
  3.  *
  4.  *      Boot program include fileto get needed FS header files.
  5.  *
  6.  * Copyright 1987 Regents of the University of California
  7.  * All rights reserved.
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /sprite/src/kernel/fs/RCS/fsInt.h,v 8.9 89/05/14 13:59:20 brent Exp Locker: brent $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _FSBOOT
  20. #define _FSBOOT
  21.  
  22. #include "fs.h"
  23. #include "fsInt.h"
  24. #include "fsLocalDomain.h"
  25. #include "fsIndex.h"
  26. #include "fsFile.h"
  27. #include "fsDevice.h"
  28. #include "boot.h"
  29.  
  30. extern Fs_Device         fsDevice;
  31. extern    FsDomain        *fsDomainPtr;
  32. extern FsLocalFileIOHandle    *fsRootHandlePtr;
  33.  
  34. #define mnew(type)    (type *)malloc(sizeof(type))
  35.  
  36. #endif _FSBOOT
  37.